home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / misc / installer / examples / stringformat.installer < prev    next >
Text File  |  1999-06-15  |  284b  |  17 lines

  1.  
  2.  
  3. ; demonstration of the string format function
  4.  
  5. (set text1 ("%s %s %s" ("Hello")
  6.                        (" Wo%s" ("%sld " "r"))
  7.                        "!"
  8.            )
  9. )
  10.  
  11. (set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 30 40)))
  12.  
  13. (exit ("%s%s" text1 text2) (quiet))
  14. (welcome)
  15.  
  16.  
  17.